home *** CD-ROM | disk | FTP | other *** search
/ Biodiversity of Illinois 2: Woodland Habitats / Biodiversity of Illinois 2 - Woodland Habitats.iso / mac / Acrobat / Acrobat 7 Reader Installer.dmg / DownloadReader7.pkg / Contents / Resources / postflight < prev   
Text File  |  2004-10-06  |  541b  |  23 lines

  1. #!/bin/csh
  2.  
  3. #
  4. # This postflight script copies instruction file to local disk, launches DLM, and
  5. # have DLM process the instruction file.
  6. #
  7.  
  8. echo "Start postflight script"
  9. echo ""
  10.  
  11. echo "copying instruction file"
  12. cp "$1/Contents/Resources/AdobeDLM4Reader7.aom" ~/library/Preferences/
  13. chmod 666 ~/library/Preferences/AdobeDLM4Reader7.aom
  14.  
  15. setenv ADOBE_DOWNLOAD_MGR_ACROBAT_AOM AdobeDLM4Reader7.aom
  16.  
  17. echo "Launching $2/Adobe Reader Download Manager.app"
  18. open "$2/Adobe Reader Download Manager.app"
  19.  
  20. #echo ""
  21. echo "End postflight script"
  22.  
  23. exit 0